home *** CD-ROM | disk | FTP | other *** search
/ Global Amiga Experience / globalamigaexperience.iso / compressed / applications / fkm132demoe.lha / Install-FKM engl < prev    next >
Text File  |  1993-09-05  |  2KB  |  87 lines

  1. ; Installationsscript für den FKM 1.32
  2.  
  3. (set quel (pathonly @icon))
  4. (complete 0)
  5.  
  6. (set ziel
  7.   (tackon
  8.     (askdir
  9.       (prompt 'Where do you want to copy the directory for the FKM?')
  10.       (help @askdir-help)
  11.       (default 'Work:')
  12.     )
  13.     'FKM'
  14.   )
  15. )
  16. (set @default-dest ziel)
  17. (copyfiles
  18.   (prompt (cat 'The file \"FKM\" will be copied to \"' ziel '\".'))
  19.   (help @copyfiles-help)
  20.   (source quel)
  21.   (dest ziel)
  22.   (pattern 'FKM engl')
  23.   (files)
  24.   (infos)
  25. )
  26. (complete 20)
  27. (rename
  28.    (tackon ziel 'FKM engl')
  29.    (tackon ziel 'FKM')
  30.    (prompt 'The file \"FKM engl\" will be renamed to \"FKM\".')
  31.    (help @rename-help)
  32. )
  33. (rename
  34.    (tackon ziel 'FKM engl.info')
  35.    (tackon ziel 'FKM.info')
  36.    (prompt 'The file \"FKM engl.info\" will be renamed to \"FKM.info\".')
  37.    (help @rename-help)
  38. )
  39. (complete 25)
  40.  
  41. (copyfiles
  42.   (prompt (cat 'The file \"FKM.guide\" (the online-help and manual of the FKM) will be copied to \"' ziel '\".'))
  43.   (help @copyfiles-help)
  44.   (source (tackon quel 'Docs English'))
  45.   (dest ziel)
  46.   (pattern 'FKM engl.guide')
  47.   (files)
  48.   (infos)
  49. )
  50. (complete 45)
  51. (rename
  52.    (tackon ziel 'FKM engl.guide')
  53.    (tackon ziel 'FKM.guide')
  54.    (prompt 'The file \"FKM engl.guide\" will be renamed to \"FKM.guide\".')
  55.    (help @rename-help)
  56. )
  57. (rename
  58.    (tackon ziel 'FKM engl.guide.info')
  59.    (tackon ziel 'FKM.guide.info')
  60.    (prompt 'The file \"FKM engl.guide.info\" will be renamed to \"FKM.guide.info\".')
  61.    (help @rename-help)
  62. )
  63. (complete 50)
  64.  
  65. (copyfiles
  66.   (prompt 'Do you want to copy the file \"FKM-Bild\"\n(the title-picture of the FKM)?\nOn 68000 based Amigas the loading of the title-picture will take a while.\nSo the FKM will also run without this picture.')
  67.   (help @copyfiles-help)
  68.   (source quel)
  69.   (dest ziel)
  70.   (pattern 'FKM-Bild')
  71.   (files)
  72.   (confirm)
  73. )
  74. (complete 75)
  75.  
  76. (copylib
  77.   (prompt 'The AmigaGuide-library will be copied to LIBS: if it is necessary.')
  78.   (help @copylib-help)
  79.   (source (tackon quel 'libs/amigaguide.library'))
  80.   (dest 'LIBS:');
  81. )
  82. (complete 100)
  83.  
  84. (exit 'The Demoversion of the FKM v1.32 was installed successfully!\n\nHave fun with the FKM!\nStefan Thomé');
  85.  
  86.  
  87.